-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat]: Packed reader multi files test #161
base: main
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: shaoting-huang The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
6fbd6c1
to
ff96888
Compare
Signed-off-by: shaoting-huang <[email protected]>
e3459ef
to
321ad6d
Compare
go/packed/packed_reader.go
Outdated
cNeedColumns := (*C.int)(C.malloc(C.size_t(len(opt.needColumns)) * C.size_t(unsafe.Sizeof(C.int(0))))) | ||
for i, col := range opt.needColumns { | ||
(*[1<<31 - 1]C.int)(unsafe.Pointer(cNeedColumns))[i] = C.int(col) | ||
} | ||
cNumNeededColumns := C.int(len(opt.needColumns)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is too much for my small heart. Can we make it simpler? The needed columns can be just a bitset with several words.
Signed-off-by: shaoting-huang <[email protected]>
Signed-off-by: shaoting-huang <[email protected]>
related: #158